Nomarl mode command | scrapVim
コマンドの実装
hjkl
code:nomalMode.js
export class NormalMode {
// 引数からemulatorとcursor計算classのinstanceを受け取る
constructor() {
this.commands = {
left: ()=>{}
down: ()=>{}
up: ()=>{}
right: ()=>{}
^0$
code:nomalMode.js
home: () => {}
startOfLine: () => {} // ^
end: () => {}
gg
G
wWbBeE
ge
gE
(){}
%HML
f{char}
レジスタ、motionを指定した状態で実行する
d
y
c
p
~
<>
code:nomalMode.js
};
}